home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-07-28 | 840 b | 41 lines | [TEXT/R*ch] |
- /*
- File: Message.r
-
- Copyright: © 1991-1994 by Apple Computer, Inc.
- All rights reserved.
-
- Part of the AOCE Sample SMSAM Package. Consult the license
- which came with this software for your specific legal rights.
-
- */
-
-
-
- #ifndef __MESSAGE__
- #define __MESSAGE__ 1
-
- #ifndef __TYPES__
- #include "Types.r"
- #endif
-
- /***********************************|****************************************
- *
- * Resource: 'TMSG' ( Text-Message )
- *
- * A text-message resource contains one or more messages in a single
- * script. Each message has a message number which identifies the
- * individual message, and the message itself.
- *
- ***********************************|****************************************/
-
- type 'TMSG'
- {
- integer = $$CountOf ( Messages );
- array Messages {
- integer; // Message number
- wstring; // Message
- };
- };
-
- #endif
-